Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 18 | Author: cody
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>Expanding Cards</title>
  </head>
  <body>
    <div class="panel-wrapper">
      <div class="panel active" style="background-image: url('https://source.unsplash.com/featured/?Space')">
        <h3>Explore The World</h3>
      </div>
      <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Beach')">
        <h3>Sunny Beach</h3>
      </div>
      <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Winter')">
        <h3>City on Winter</h3>
      </div>
      <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?GoldenTime')">
        <h3>Golden Time</h3>
      </div>
      <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Mountains')">
        <h3>Mountains</h3>
      </div>
    </div>

    <script src="app.js"></script>
  </body>
</html>

Comments